home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemd.h < prev    next >
C/C++ Source or Header  |  1993-04-28  |  793b  |  33 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMdesktop
  4. //
  5. //  A GEMdesktop is a replacement for the standard desktop.
  6. //
  7. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  8. //  This file is part of the gem++ library.
  9. //  You are free to copy and modify these sources, provided you acknowledge
  10. //  the origin by retaining this notice, and adhere to the conditions
  11. //  described in the file COPYING.LIB.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. #ifndef GEMd_h
  16. #define GEMd_h
  17.  
  18. #include <gemfb.h>
  19. #include <gemfw.h>
  20. #include <bool.h>
  21.  
  22.  
  23. class GEMdesktop : public GEMformwindow
  24. {
  25. public:
  26.     GEMdesktop(GEMactivity& in, const GEMrsc& rsc, int RSCindex);
  27.     ~GEMdesktop();
  28.  
  29.     virtual bool IsOpen() const;
  30. };
  31.  
  32. #endif
  33.